home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 22
/
Cream of the Crop 22.iso
/
program
/
euphor14.zip
/
INSTALL.BAT
< prev
next >
Wrap
DOS Batch File
|
1996-04-05
|
1KB
|
58 lines
@echo off
rem How to install Euphoria from a floppy or hard disk directory:
rem Step 1. a: (or b:) (or cd into directory containing the files)
rem Step 2. install
rem check for people who try to do a:install
if "%0"=="a:install" goto floppya
if "%0"=="A:INSTALL" goto floppya
if "%0"=="a:\install" goto floppya
if "%0"=="A:\INSTALL" goto floppya
if "%0"=="a:install.bat" goto floppya
if "%0"=="A:INSTALL.BAT" goto floppya
if "%0"=="a:\install.bat" goto floppya
if "%0"=="A:\INSTALL.BAT" goto floppya
if "%0"=="b:install" goto floppyb
if "%0"=="B:INSTALL" goto floppyb
if "%0"=="b:\install" goto floppyb
if "%0"=="B:\INSTALL" goto floppyb
if "%0"=="b:install.bat" goto floppyb
if "%0"=="B:INSTALL.BAT" goto floppyb
if "%0"=="b:\install.bat" goto floppyb
if "%0"=="B:\INSTALL.BAT" goto floppyb
:start0
if exist install.ex goto start1
goto fail
:floppya
a:
cd \
goto start0
:floppyb
b:
cd \
goto start0
:start1
if exist ex.exe goto start2
goto fail
:start2
echo loading installation program...
ex install
goto done
:fail
echo You must first cd to the directory containing
echo all of the Euphoria files, then type: install
echo See install.doc for detailed instructions.
echo.
pause
:done